projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
637406f
)
(easy-mmode-define-keymap):
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Sun, 12 Nov 2000 18:09:09 +0000
(18:09 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Sun, 12 Nov 2000 18:09:09 +0000
(18:09 +0000)
Add keyword arg :name.
lisp/emacs-lisp/easy-mmode.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/easy-mmode.el
b/lisp/emacs-lisp/easy-mmode.el
index e3c82e445de0c02a27713687bdbacdc5dc61234c..2dde3559088580826c69471e67b63b9e313cb72e 100644
(file)
--- a/
lisp/emacs-lisp/easy-mmode.el
+++ b/
lisp/emacs-lisp/easy-mmode.el
@@
-315,12
+315,13
@@
BS must be a list of (KEY . BINDING) where
KEY and BINDINGS are suitable for `define-key'.
Optional NAME is passed to `make-sparse-keymap'.
Optional map M can be used to modify an existing map.
-ARGS is a list of additional arguments."
+ARGS is a list of additional
keyword
arguments."
(let (inherit dense suppress)
(while args
(let ((key (pop args))
(val (pop args)))
(case key
+ (:name (setq name val))
(:dense (setq dense val))
(:inherit (setq inherit val))
(:group)